home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / lang / FPL_v147.lha / fpl / funclib / funclib.h < prev    next >
Text File  |  1994-04-08  |  570b  |  28 lines

  1. /*
  2.  * Here are all funclib structures, defines, macros and return codes.
  3.  */
  4.  
  5. typedef enum {
  6.   FUNCLIB_OK,
  7.   /* The funclib execution (start/close) went OK */
  8.  
  9.   FUNCLIB_PARAMETER,
  10.   /* parameter error when the funclib was called */
  11.  
  12.   FUNCLIB_INTERNAL,
  13.   /* some kind of internal, undefined error! */
  14.  
  15.   FUNCLIB_RESOURCE,
  16.   /* failed getting a system resource */
  17.  
  18.   FUNCLIB_MEMORY,
  19.   /* failed getting enough memory from the system */
  20.  
  21.   FUNCLIB_LOAD,
  22.   /* failed loading the funclib */
  23.  
  24.   FUNCLIB_VERSION
  25.   /* the requested funclib version wasn't found */
  26. } FuncRet;
  27.  
  28.